/* reset */
* {
margin: 0;
padding: 0;
}

/* render html5 elements as block */
header, footer, section, aside, nav, article {
display: block;
}

body {
line-height: 1;
background: #3F4F5F;
font-family: "Century Gothic", Helvetica, sans-serif;
color: #333;
font-size: 14px;
line-height: 18px;
}
	
/* layout */

#wrapper {
width: 732px;
margin: 0 auto;
margin-top: 20px;
margin-bottom: 20px;
border: 3px solid #2c3742;
background: #ffffff;
/* curved border radius */
-moz-border-radius: 10px;
-webkit-border-radius: 10px;
}

nav {
width: 100%;
margin: 0 auto;
background: #2c3742;
}

#main {
width: 100%;
margin: 0 auto;
padding-top: 2px;
background: #ffffff;
overflow: hidden;
}

#content {
margin-left: 2px;
}


footer {
width: 100%;
margin: 0 auto;
clear: both;
}

/* basics */

h1,h2,h3,h4,h5,h6 {
font-weight: bold;
clear: both;
color: #333;
}

a:link, a:visited {
color:#000;
}

a:hover, a:active {
text-decoration: underline;
}

p {
margin-bottom: 18px;
}


/* nav */

nav .menu {
font-size: 14px;
font-weight: bold;
}

nav .menu ul {
margin: 0;
padding: 15px 0 10px 0px;
list-style: none;
line-height: normal;
text-align: center;
}

nav .menu li {
display: inline-block;
float: none;
text-align: center;
width: 130px;
text-align: center;
}

nav .menu a {
display: block;
float: none;
text-align: center;
margin-right: 0px;
padding: 0px 0px;
text-decoration: none;
color: #fff;
}

nav .menu a:hover {
color:#FFFFa2;
}



/** HEADER */

header {
padding: 20px 0 0 0;
}

header img {
clear: both;
display: block;
}

header>h1 {
text-align: center;
margin: 0 0 10px 10px;
font-size: 35px;
line-height: 36px;
}

header>h1 a {
color: #333;
font-weight: bold;
text-decoration: none;
}

header>h2 {
color: #777;
clear: right;
font-style: italic;
font-size: 16px;
font-weight: bold;
margin: 2px 10px 5px 0;
}

/** ARTICLES **/
article img {
border: none;
/* curved border radius */
-moz-border-radius: 10px;
-webkit-border-radius: 10px;
}

#content p, ul, ol, hr {
margin: 0 10px 10px 10px;
}

#content ul ul, ol ol, ul ol, ol ul {
margin-bottom: 0;
}

#content h1, h2, h3, h4, h5, h6 {
color: #333;
margin: 0 0 2px 10px;
line-height: 1.5em;
font-size: 14px;
}

.alignleft, img.alignleft {
display: inline;
float: left;
margin-right: 10px;
}

.alignright, img.alignright {
display: inline;
float: right;
margin-left: 10px;
}

.aligncenter, img.aligncenter {
clear: both;
display: block;
margin-left: auto;
margin-right: auto;
}

img {
margin-bottom: 2px;
}

#content a:hover {
color:#000000;
font-weight: bold;
}

/* sidebar and footer widget blocks */

aside h3 {
font-size: 14px;
margin: 0 0 15px 10px;
text-shadow: 0px 2px 3px #ddd;
}

aside ul {
list-style: square;
color: #bbb;
margin: -15px 0 15px 25px;
}

#footer-area {
background: #2c3742;
color: #D8DBDF;
font-size: 90%;
padding: 10px 0px;
overflow: hidden;

}

.footer-segment {
float: left;
margin-right: 10px;
margin-left: 5px;
width: 100%;
}

.footer-copy {
float: left;
margin-top: 10px;
margin-left: 5px;
width: 95%;
}

footer aside h4 {
color: #faf0e6;
font-size: 16px;
line-height: 1.5em;
}

footer ul {
list-style: none;
margin: -15px 0;
}

footer a:link, footer a:visited {
color: #fff;
}

footer a:hover { 
color:#FFFFa2;
}

footer p {
margin-top: -15px;
color: #faf0e6;
}






.button {
	-moz-box-shadow: 0px 0px 0px 0px #b2b8bf;
	-webkit-box-shadow: 0px 0px 0px 0px #b2b8bf;
	box-shadow: 0px 0px 0px 0px #b2b8bf;
	background-color:#3f4f5f;
	-moz-border-radius:5px;
	-webkit-border-radius:5px;
	border-radius:5px;
	border:1px solid #2c3742;
	display:inline-block;
	cursor:pointer;
	color:#ebedef;
	font-family: "Century Gothic", Helvetica, sans-serif;
	font-size:24px;
	font-weight:bold;
	padding:11px 12px;
	text-decoration:none;
	text-shadow:0px 1px 0px #2c3742;
}
.button:hover {
	background-color:#2c3742;
}
.button:active {
	position:relative;
	top:1px;
}

.textbox {
width:255px;
height:40px;
font-size:20px;
background-color:#ffffff;
padding:6px 0px 6px 8px;
font-weight:bold;
border-width:1px;
border-style:solid;
border-color:#3f4f5f;
border-radius:10px;
font-family: "Century Gothic", Helvetica, sans-serif;
}

input[type=text]:focus {
    box-shadow: 0px 0px 0pt 2pt #2c3742;
}



/* Tablet Landscape */
@media screen and (max-width: 732px) {
#wrapper { width:99%; }
#main { width:100%; }
}

/* Two Line Menu */
@media screen and (max-width: 550px) {
#wrapper { width:99%; }
#main { width:100%; }
nav .menu ul {width: 99%; text-align: center;}
nav .menu li {width: 49%; float: center; padding-bottom: 15px;}
}